home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / CScrollList 1.0 / Demo Classes / CScrollListDemoDir.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  727 b   |  43 lines  |  [TEXT/KAHL]

  1. /*************************************************************************************
  2.  
  3.  CScrollListDemoDir.c
  4.     
  5.         Interface for CScrollListDemoDir.
  6.     
  7.     SUPERCLASS = CShowcaseDemoDir
  8.     
  9.     REQUIRES : CScrollList
  10.     
  11.         © 1992 Dave Harkness
  12.  
  13. *************************************************************************************/
  14.  
  15.  
  16. #include "CSApplication.h"
  17.  
  18.  
  19. #define kWINDScrollListDemo        2000
  20. #define kScPnScrollListDemo        2000
  21. #define kSTRScrollListDemo        2000
  22.  
  23. #define kCheckCursorID        2000
  24. #define kHandCursorID        2001
  25.  
  26.  
  27. class CStringArray;
  28.  
  29.  
  30. class CScrollListDemoDir : public CShowcaseDemoDir
  31. {
  32. public:
  33.  
  34.     virtual void        INewDemo( CDirectorOwner *aSupervisor);
  35.     
  36.     virtual void        Dispose( void);
  37.  
  38. protected:
  39.  
  40.     CStringArray        *itsArray;
  41.  
  42. };
  43.